home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20021006-20030409 / 000215_fdc@columbia.edu_Tue Jan 14 12:04:29 EST 2003.msg < prev    next >
Text File  |  2003-04-08  |  2KB  |  56 lines

  1. Article: 14005 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: FTP after connecting to dialup ISP
  6. Date: 14 Jan 2003 12:04:21 -0500
  7. Organization: Columbia University
  8. Lines: 39
  9. Message-ID: <b01ful$1ue$1@watsol.cc.columbia.edu>
  10. References: <fff32a0d.0301140853.105694b6@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1042563863 18861 128.59.39.139 (14 Jan 2003 17:04:23 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 14 Jan 2003 17:04:23 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14005
  16.  
  17. In article <fff32a0d.0301140853.105694b6@posting.google.com>,
  18. Chris Aiken <chris@millfieldcomputers.co.uk> wrote:
  19. : I need to 
  20. : 1. Dial up my ISP for internet access
  21. : 2. Once connected to the internet I need to FTP login/password to a
  22. : remote site
  23. : 3. send a file
  24. : I can't see how I can get kermit to do the ISP dialup & login/password
  25. : then the site login/password automtically.
  26. : If I connect to my ISP before the FTP login/password & transfer it
  27. : works fine.
  28. : How do I initiate the ISP dialup and login/password authentification
  29. : automatically??. If I dial the ISP manually in kermit it returns no
  30. : login/password prompts then terminates with No Carrier.
  31. Assuming we are talking about Windows, you can't.  Microsoft does not
  32. supply an API that allows a regular application like Kermit 95 to dial
  33. your ISP and then turn the connection over to the TCP/IP stack.  This
  34. is covered in the Kermit 95 FAQ:
  35.  
  36.   http://www.columbia.edu/kermit/k95faq.html
  37.  
  38. It might be possible in other operating systems, with varying degrees
  39. of difficulty and awkwardness.
  40.  
  41. In Windows, you have to use the Microsoft way of getting on the Internet
  42. (e.g. Dial Up Networking, GUI dialog boxes).  Once the Internet connection
  43. is established, Kermit can use it as a Telnet, FTP, SSH, Rlogin, HTTP,
  44. or other TCP service client (or, in some cases, server), and all of this
  45. can be automated.  Establishment of the ISP connection itself, however, is
  46. off-limits to Kermit.
  47.  
  48. There might be a way to configure Windows Dial Up Networking to do its job
  49. silently, without popping up any dialogs or prompting you for anything, but
  50. if there is, I haven't discovered it.
  51.  
  52. - Frank
  53.